Skip to content

Conversation

@imanabbasi
Copy link

No description provided.

@khepin
Copy link
Collaborator

khepin commented Nov 27, 2024

Can you update so the tests pass?

Comment on lines +173 to +174
$durable = Arr::get($options, 'durable') ?: true;
$autoDelete = Arr::get($options, 'auto_delete') ?: false;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not use 3rd argument of Arr::get()?

$durable = Arr::get($options, 'durable', true);
$autoDelete = Arr::get($options, 'auto_delete', false);

Comment on lines +725 to +726
$durable = Arr::get($options, 'durable') ?: true;
$autoDelete = Arr::get($options, 'auto_delete') ?: false;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not use 3rd argument of Arr::get()?

$durable = Arr::get($options, 'durable', true);
$autoDelete = Arr::get($options, 'auto_delete', false);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants